.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5d5d5d;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
      
  .logo {
    flex: 1;
  }
      
  .logo img {
    height: 100px;
    margin: right 0;;
  }
      
  .zoekwoorden {
    display: flex; 
    margin-left: -20px;
    gap: 35px; 
    cursor: pointer;
    border: #000000;
    border-radius: 20px;
  }
      
  .zoekwoorden span a {
    font-size: 20px; 
    font-weight: bold; 
    text-decoration: none; 
    text-decoration-color: black;
    margin: 20px;
  }
      
  a{ 
    color: #000000;
  }
      
  .search-container {
    position: relative;
    width: 100%;
    max-width: 400px; 
    margin: 20px auto;
  }
  
  #search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
  }
  
  .suggestions-list {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%; 
    background-color: white;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1000; 
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  }
  
  .suggestions-list li {
    padding: 10px;
    cursor: pointer;
    color: black; 
    text-decoration: none; 
  }
  
  .suggestions-list li:hover {
    background-color: #f4f4f4;
  }
  
  .suggestions-list li.clickable {
    color: rgb(0, 0, 0); 
  }
  
  .inloggen-knop {
    padding: 10px 15px; 
    font-size: 16px; 
    border: none; 
    background-color: #007bff; 
    color: white; 
    border-radius: 5px; 
    cursor: pointer; 
    margin: 35px;
  }
      
  .winkelmandje {
    font-size: 24px; 
    cursor: pointer; 
    margin: 35px;
  }
    
  .aantal {
    position: absolute; 
    top: 42px; 
    right: 42px; 
    background-color: red; 
    color: white; 
    border-radius: 50%; 
    width: 15px; 
    height: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 14px; 
  }

  h2 {
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.contact-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #45a049;
}

footer {
    padding: 20px; 
    text-align: center; 
    background-color: #5d5d5d;
    margin: 0;
    margin-right: 15px;
    color: #ffffff;
}
        
footer a{
    color: #ffffff;
    margin: 15px;
}